C1.WPF.Document.4.6.2 Assembly / C1.WPF.Document Namespace / AsyncOperationWithProgressCompletedHandler<TResult,TProgress> Delegate
The result of the action.
The type of the progress data.
The asynchronous operation.
The status of asynchronous action.

In This Topic
AsyncOperationWithProgressCompletedHandler<TResult,TProgress> Delegate
In This Topic
Represents a method that handles the completed event of an asynchronous operation that provides progress updates.
Syntax
'Declaration
 
Public Delegate Sub AsyncOperationWithProgressCompletedHandler
    (Of TResult,TProgress)( _
   ByVal asyncInfo As IAsyncOperationWithProgress(Of TResult,TProgress), _
   ByVal asyncStatus As AsyncStatus _
) 
 

Parameters

asyncInfo
The asynchronous operation.
asyncStatus
The status of asynchronous action.

Type Parameters

TResult
The result of the action.
TProgress
The type of the progress data.
See Also